사이트 내 전체검색
레이어로 이미지 크게 보여주기
로빈아빠
https://cmd.kr/javascript/664 URL이 복사되었습니다.

본문

레이어로 이미지 크게 보여주기

ff687bf8_122628598100880
<SCRIPT LANGUAGE="JavaScript">
function viewMyPhoto(val,e)
{
	var obj;

	obj = document.getElementById('thumb_wnd');	
	obj.style.left = e.clientX+5+document.body.scrollLeft;
	obj.style.top = e.clientY+5+document.body.scrollTop;
	obj.style.display = '';
	obj.innerHTML = "<img src='"+val+"' style='border:#8E8A8B 1px solid;'>";
}

function hideMyPhoto()
{
	var obj = document.getElementById('thumb_wnd');
	obj.style.display = 'none';
}

document.write("<div id='thumb_wnd' style='display:none; position:absolute; width:120px; height:120px; z-index:5;'></div>");
</SCRIPT>
<img src='a.jpg' width='32' height='32'  onmousemove='viewMyPhoto("b.gif",event);' onmouseout='hideMyPhoto();'>

댓글목록

등록된 댓글이 없습니다.

831 (2/17P)

Search

Copyright © Cmd 명령어 3.142.130.250